home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 1997 September / Personal_Computer_World_Sep_97.iso / Democd3 / video.dxr / 00211_p1 main.ls < prev    next >
Encoding:
Text File  |  1997-06-04  |  448 b   |  22 lines

  1. on enterFrame
  2.   global gtotallength, open1
  3.   set the soundEnabled to 1
  4.   if open1 = 0 then
  5.     set the visible of sprite 3 to 1
  6.     set the movieTime of sprite 3 to 0
  7.     setTrackEnabled(sprite(3), 1, 1)
  8.     setTrackEnabled(sprite(3), 2, 1)
  9.     set the movieRate of sprite 3 to 1
  10.   end if
  11.   set open1 to 1
  12.   updateStage()
  13. end
  14.  
  15. on exitFrame
  16.   if the movieTime of sprite 3 > (22 * 60) then
  17.     go(the frame + 1)
  18.   else
  19.     go(the frame)
  20.   end if
  21. end
  22.